decb0cda9c950c472128b64788d276899d202777,portal-impl/src/com/liferay/portal/googleapps/GHelperUtil.java,GHelperUtil,submitAdd,#GAuthenticator#String#Document#,153

Before Change


			options.setLocation(url);
			options.setPost(true);

			HttpUtil.URLtoString(options);
		}
		catch (IOException ioe) {
			throw new GoogleAppsException(ioe);

After Change


			options.setLocation(url);
			options.setPost(true);

			String response = HttpUtil.URLtoString(options);

			if (_log.isInfoEnabled()) {
				_log.info("submitAdd response " + response);
			}
		}
		catch (IOException ioe) {